From: Martin Pohlack Date: Tue, 28 Oct 2014 12:35:21 +0000 (+0100) Subject: blktap: CONFIG_GCRYPT detection X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4114 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=6f78e851395394ece4385b65ad0788840db2b5d1;p=xen.git blktap: CONFIG_GCRYPT detection Wrap make variable in () to allow correct evaluation. This fixes broken CONFIG_GCRYPT detection which was introduced by commit 85896a7c4dc7b6b1dba2db79dfb0ca61738a92a4 in 2012. Signed-off-by: Martin Pohlack Reviewed-by: Uwe Dannowski Reviewed-by: Anthony Liguori Reviewed-by: Matt Wilson Acked-by: Ian Campbell --- diff --git a/tools/blktap/drivers/Makefile b/tools/blktap/drivers/Makefile index 7461a95d67..cea8b3b468 100644 --- a/tools/blktap/drivers/Makefile +++ b/tools/blktap/drivers/Makefile @@ -11,7 +11,7 @@ CFLAGS += $(CFLAGS_libxenctrl) CFLAGS += $(CFLAGS_libxenstore) CFLAGS += -D_GNU_SOURCE -ifeq ($CONFIG_GCRYPT,y) +ifeq ($(CONFIG_GCRYPT),y) CFLAGS += -DUSE_GCRYPT CRYPT_LIB := -lgcrypt else